/* ============================================================
   PROMISE / MISSION / VISION - SCREENSHOT STYLE
============================================================ */

.pmv-section {
    position: relative;
    width: 100%;
    height: 800px;
    min-height: 800px;

    overflow: hidden;

    background: #193873;

    isolation: isolate;
}


/* ============================================================
   BACKGROUND IMAGE
============================================================ */

.pmv-bg-layer {
    position: absolute;
    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    background-image: var(--pmv-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 1;

    transform: scale(1.01);

    transition:
        opacity 350ms ease,
        transform 900ms ease;

    pointer-events: none;
}


/* NO BLUE OVERLAY */

.pmv-section::after {
    display: none;
}


/* ============================================================
   CARDS CONTAINER
============================================================ */

.pmv-container {
    position: absolute;

    top: 55%;
    left: 10%;

    z-index: 2;
    gap: 12px;
    display: flex;
    align-items: stretch;

    width: auto;
    height: 450px;

    transform: translateY(-50%);

    margin: 0;
    padding: 0;
}


/* ============================================================
   COMMON CARD
============================================================ */

.pmv-card {
    position: relative;

    width: 55px;
    height: 450px;

    flex: 0 0 55px;

    margin: 0;

    overflow: hidden;

    cursor: pointer;

    background: rgba(239, 240, 236, 0.72);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-left:
        1px solid rgba(255, 255, 255, 0.35);

    border-right:
        1px solid rgba(70, 60, 55, 0.18);

    transition:
        width 700ms cubic-bezier(.77, 0, .18, 1),
        flex-basis 700ms cubic-bezier(.77, 0, .18, 1),
        background 400ms ease;

    will-change:
        width,
        flex-basis;
}


/* ============================================================
   ACTIVE CARD
============================================================ */

.pmv-card.active {
    width: 450px;
    flex: 0 0 450px;

    cursor: default;
height: 100%;
    border: none;

    background:
        linear-gradient(
            145deg,
            rgba(236, 181, 139, 0.90) 0%,
            rgba(214, 168, 151, 0.88) 30%,
            rgba(159, 153, 182, 0.90) 60%,
            rgba(101, 124, 177, 0.94) 100%
        );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.20);
}


/* ============================================================
   ACTIVE CARD GRADIENT LIGHT
============================================================ */

.pmv-card.active::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(255, 255, 255, 0.16),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.06),
            transparent 45%,
            rgba(43, 70, 135, 0.12)
        );

    pointer-events: none;
}


/* ============================================================
   CARD IMAGE
============================================================ */

.pmv-card-image {
    display: none;
}


/* ============================================================
   CLOSED VERTICAL TITLE
============================================================ */

.pmv-closed-title {
    position: absolute;

    left: 50%;
    bottom: 85px;

    z-index: 5;

    margin: 0;

    color: #0a2a68;

    font-size: 16px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    white-space: nowrap;

    transform:
        translateX(-50%)
        rotate(-90deg);

    transform-origin: center;

    opacity: 1;

    transition:
        opacity 200ms ease;

    pointer-events: none;
}


.pmv-card.active .pmv-closed-title {
    opacity: 0;
}


/* ============================================================
   ORANGE ARROW
============================================================ */

.pmv-card:not(.active)::before {
    content: "➜";

    position: absolute;
    top: 22px;
    left: 50%;
    z-index: 10;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff9147;
    color: #16356d;

    font-size: 12px;
    font-weight: 700;

    transform:
        translateX(-50%)
        rotate(-90deg);

    pointer-events: none;
}


/* ============================================================
   ACTIVE CONTENT
============================================================ */

.pmv-content {
    position: relative;

    z-index: 10;

    width: 450px;
    height: 450px;

    padding:
        58px
        38px
        35px;

    color: #ffffff;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity 200ms ease,
        transform 400ms ease,
        visibility 0s linear 400ms;

    pointer-events: none;
}


.pmv-card.active .pmv-content {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    transition:
        opacity 400ms ease 250ms,
        transform 450ms ease 200ms,
        visibility 0s;

    
}


/* ============================================================
   ACTIVE TITLE
============================================================ */

.pmv-main-title {
    margin: 0 0 27px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.2;
font-family: poppins;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ============================================================
   TEXT
============================================================ */

.pmv-text-block {
    margin-bottom: 14px;
}


.pmv-text-block h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.35;

    font-weight: 600;
}


.pmv-text-block p {
    margin: 0;

    color: rgba(255, 255, 255, 0.96);
 font-family: sans-serif;
    font-size: 24px;
    line-height: 1.45;

    font-weight: 400;
}


/* ============================================================
   STATS
============================================================ */

.pmv-stats {
    display: flex;

    align-items: flex-start;

    gap: 35px;

    margin-top: 20px;
}


.pmv-stat {
    min-width: 70px;
}


.pmv-stat strong {
    display: block;

    margin-bottom: 6px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1;

    font-weight: 700;
}


.pmv-stat span {
    display: block;

    color: rgba(255, 255, 255, 0.9);

    font-size: 10px;
    line-height: 1.3;
}


/* ============================================================
   TABLET
============================================================ */
/* ============================================================
   TABLET
============================================================ */

/* ============================================================
   TABLET + MOBILE
============================================================ */

@media (max-width: 991px) {

    .pmv-section {
        height: auto;
        min-height: 0;

        padding: 0;

        overflow: visible;

        background: #ffffff;
    }


    .pmv-bg-layer {
        display: none;
    }


    .pmv-container {
        position: relative;

        top: auto;
        left: auto;

        display: flex;
        flex-direction: column;

        width: 100%;
        height: auto;

        gap: 0;

        transform: none;
    }


    /* ---------- ROW (closed + open share this) ---------- */

    .pmv-card {
        position: relative;

        width: 100% !important;
        height: auto !important;

        flex: none !important;

        overflow: hidden;

        background: linear-gradient(
            to right,
            #ffffff 0%,
            #ffe0c4 100%
        );

        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        border: none;
        border-bottom: 1px solid rgba(18, 37, 96, 0.12);

        transition: none;
    }


    /* ---------- OPEN ROW ---------- */

    .pmv-card.active {
        width: 100% !important;
        height: auto !important;

        flex: none !important;

        background: linear-gradient(
            135deg,
            #efa87a 0%,
            #c294ab 50%,
            #6d8bc6 100%
        );

        box-shadow: none;
    }


    .pmv-card.active::after {
        display: none;
    }


    /* ---------- CLOSED TITLE ---------- */

    .pmv-closed-title {
        position: relative;

        top: auto;
        left: auto;
        bottom: auto;

        display: block;

        margin: 0;
        padding: 21px 60px 21px 20px;

        color: #12356d;

        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1.2px;

        white-space: normal;

        transform: none;
    }


    .pmv-card.active .pmv-closed-title {
        display: none;
    }


    /* ---------- ORANGE SQUARE TOGGLE ---------- */

    .pmv-card::before,
    .pmv-card:not(.active)::before {
        content: "+";

        position: absolute;

        top: 18px;
        right: 18px;
        left: auto;

        width: 26px;
        height: 26px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 0;

        background: #ff9147;
        color: #12356d;

        font-size: 19px;
        font-weight: 700;
        line-height: 1;

        transform: none;

        pointer-events: none;

        z-index: 10;
    }


    .pmv-card.active::before {
        content: "−";
    }


    /* ---------- OPEN CONTENT ---------- */

    .pmv-content {
        position: relative;

        width: 100%;
        height: auto;

        padding: 22px 20px 26px;

        opacity: 0;
        visibility: hidden;

        transform: none;
        transition: none;
    }


    /* .pmv-card.active .pmv-content {
        opacity: 1;
        visibility: visible;

        transition: none;
    } */
        .pmv-content {
        display: none;
    }


    .pmv-card.active .pmv-content {
        display: block;

        position: relative;

        width: 100%;
        height: auto;

        padding: 22px 20px 26px;

        opacity: 1;
        visibility: visible;
    }


    .pmv-main-title {
        margin: 0 0 14px;

        font-size: 17px;
        letter-spacing: 1.2px;
    }


    .pmv-text-block {
        margin-bottom: 12px;
    }


    .pmv-text-block h3 {
        margin: 0 0 6px;

        font-size: 13px;
    }


    .pmv-text-block p {
        font-size: 14px;
        line-height: 1.6;
    }


    .pmv-stats {
        gap: 24px;
        margin-top: 16px;
    }


    /* ---------- IMAGE (open row only) ---------- */

    .pmv-card-image {
        display: none;
    }


    .pmv-card.active .pmv-card-image {
        display: block;

        position: relative;

        width: 100%;
        height: 300px;

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 576px) {

    .pmv-closed-title {
        padding: 19px 56px 19px 18px;

        font-size: 14px;
    }


    .pmv-card::before,
    .pmv-card:not(.active)::before {
        top: 16px;
        right: 16px;

        width: 24px;
        height: 24px;

        font-size: 18px;
    }


    .pmv-content {
        padding: 20px 18px 24px;
    }


    .pmv-main-title {
        font-size: 16px;
    }


    .pmv-text-block p {
        font-size: 16px;
    }


    .pmv-card.active .pmv-card-image {
        height: 260px;
    }
}